Resonance: A Plague Tale Legacy Trainer 2026 for Windows with God Mode, Unlock All Codex Entries, Unlock All Chapters, Unlock Everything, Change Resonance Points, Resonance Points Editor, profiles, hotkeys, configs, and a clean desktop workflow.
Discover gists
Resonance: A Plague Tale Legacy Trainer toolkit for Windows with Resonance Points Editor, Game Speed, Configurable Hotkeys, Saved Profiles, Trainer Dashboard, Quick Presets, modern dashboard, saved presets, and desktop-focused setup.
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| javascript:if(window.WebKitPlaybackTargetAvailabilityEvent){var videos=document.getElementsByTagName("video");if(videos.length>0)for(var airplayable=videos[0],i=0;i<videos.length;i++)if(!(airplayable=videos[i]).paused){airplayable.webkitShowPlaybackTargetPicker();break}} |
| import { | |
| ActivityIndicator, | |
| Button, | |
| ScrollView, | |
| Text, | |
| View, | |
| } from "react-native"; | |
| import * as AuthSession from "expo-auth-session"; | |
| import * as WebBrowser from "expo-web-browser"; | |
| import { useEffect, useState } from "react"; |
| #!/bin/bash | |
| set -euo pipefail | |
| #based on https://gist.github.com/aerodomigue/0320ec3dffbc60caeaee8a6fc83cb470, thank you aerodomigue | |
| # --- Safety check: only run on Debian 12 (bookworm) --- | |
| if [ ! -r /etc/os-release ]; then | |
| echo "ERROR: /etc/os-release not found, cannot verify OS. Aborting." >&2 | |
| exit 1 | |
| fi |
| /* -- PS5 Skin for GamepadViewer | Created by CrazyGrape -- | |
| HOW TO USE IN OBS: | |
| 1. Go to GamepadViewer.com and generate a URL (make sure to USE THE XBOX SKIN or leave the skin blank) | |
| 2. Generate your URL once the settings are correct and copy it to your clipboard | |
| 3. In OBS, create a new browser source | |
| 4. In the URL Screen, paste the link copied from GamepadViewer.com | |
| 5. Set the width to 807 and the height to 651 | |
| 6. Paste the contents of this CSS file into the Custom CSS field | |
| 7. Click Done. | |
| 8. Enjoy the skin! */ |
| #!/bin/bash | |
| # Update source from bookworm to trixie | |
| sed -i 's/bookworm/trixie/g' /etc/apt/sources.list | |
| apt-get update | |
| # Upgrade to trixie | |
| DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" dist-upgrade -y | |
| # Disable services that break in LXC / containers (harmless if not present) | |
| systemctl disable --now systemd-networkd-wait-online.service || true |
